home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 002a / pga.zip / PRINTME.BAT < prev    next >
DOS Batch File  |  1990-08-29  |  525b  |  16 lines

  1. echo off
  2. if %1 == P goto PRINTFILE
  3. if %1 == F goto COPYFILE
  4.  echo     You must specify an argument
  5.  echo         type PRINTME P to print instructions 
  6.  echo              PRINTME F to copy instructions to a file
  7. goto END
  8. :PRINTFILE
  9.  copy readme.txt prn
  10.  goto END
  11. :COPYFILE
  12.  copy read01 + load01 + load02 + load03 + load04 + read02 + read03 readme.txt        
  13.  copy readme.txt + read04 + read05 + read06 + read07 + read08 + read09 readme.txt
  14.  copy readme.txt + read10 + read11 + read12 + read13 readme.txt
  15. :END
  16.